frxJPEGexport creates filename with a 1
mierlp
Netherlands
I create a .jpg file based on frxJPEGexport
The filename i use : M-ticket
When the export is done the file is created correct
but the file name = M-ticket.1.jpg instead of M-ticket.jpg (without the .1.)
What causes this problem and how to solve
I use FastReport 5.6.8 std
Regards Peter
The filename i use : M-ticket
When the export is done the file is created correct
but the file name = M-ticket.1.jpg instead of M-ticket.jpg (without the .1.)
What causes this problem and how to solve
I use FastReport 5.6.8 std
Regards Peter
Comments
Cheers, Paul
the problem is that the exporter creates one file per page and the ".1." represents the page number.
You can set the "SeparateFiles" Property to false at runtime:
frxJPEGExport1.SeparateFiles := False
Regards
Christian